home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland Pascal with Objects 7.0 / DOSDEMOS.ZIP / OVRDEMO1.PAS < prev    next >
Pascal/Delphi Source File  |  1992-10-27  |  494b  |  24 lines

  1. {************************************************}
  2. {                                                }
  3. { Overlay Demo Unit                              }
  4. { Copyright (c) 1985,90 by Borland International }
  5. {                                                }
  6. {************************************************}
  7.  
  8. {$O+,F+}
  9. unit OvrDemo1;
  10. { This unit is used by OVRDEMO.PAS }
  11.  
  12. interface
  13.  
  14. procedure Write1;
  15.  
  16. implementation
  17.  
  18. procedure Write1;
  19. begin
  20.   Writeln('One...');
  21. end;
  22.  
  23. end.
  24.